projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f27bd27
)
(child_setup_tty): Turn off ISTRIP to pass 8bit. Turn off TAB3 so
author
Richard M. Stallman
<rms@gnu.org>
Sat, 27 Jan 1996 08:22:36 +0000
(08:22 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sat, 27 Jan 1996 08:22:36 +0000
(08:22 +0000)
don't expand tabs.
src/sysdep.c
patch
|
blob
|
history
diff --git
a/src/sysdep.c
b/src/sysdep.c
index 693f131489b29ba1c50a8a927949c453c16d935b..bcb624e20408ff84aa482cc646f45fdd87763612 100644
(file)
--- a/
src/sysdep.c
+++ b/
src/sysdep.c
@@
-522,9
+522,13
@@
child_setup_tty (out)
#ifdef IUCLC
s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
#endif
+#ifdef ISTRIP
+ s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */
+#endif
#ifdef OLCUC
s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */
#endif
+ s.main.c_oflag &= ~TAB3; /* Disable tab expansion */
s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
#if 0
/* Said to be unnecessary: */